Digital Signal Processing (A) 2022

1. Fill-in-the-blanks

1

The system function of an LTI system is H(z)=(1+1.2z1)/(1+0.1z10.06z2) and thus its difference equation is y[n]+0.1y[n1]0.06y[n2]=x[n]+1.2x[n1]. It is an IIR system. Please plot the parallel realization of the system in the following area.

H(z)=1.81+0.3z1+2.810.2z1

2

Given two sequences x1(n)={1,2,1} and x2(n)={1,3,2,1}, the linear convolution between them is {1,1,9,2,0,1} and the circular convolution L=6 is {1,1,9,2,0,1}.

3

Which of the following statements are correct?

4

The system function of a causal LTI system is H(z)=(34z1)/(13.5z1+1.5z2) and thus the ROC of H(z) is |z|>3.

零点为 z=3,z=0.5. 因为因果所以 ROC 必须包含 ,也就是 |z|>3,

5

Supposing that the system function of an analog low-pass filter is Ha(s), we convert it to a digital filter using the relation H(z)=Ha(s)|s=z+1z1 and thus the digital filter is high-pass.

6

The sequence x(n) with period N and its discrete Fourier transform is X(k). Hence, the discrete Fourier transform of x(n+l) can be expressed in terms of X(k) as X(k)WNlk.

利用:

X(k)=n=0N1x(n)WNnk

可得:

n=0N1x(n+l)WNnk=WNlkX(k)

7

Which of the following statements are correct?

8

We use an all-pass filter to stabilize a system with two unstable poles z=1re±jθ,r<1, and thus the system function of the all-pass filter should be written as Hap(z)=z1rejθ1rejθz1z1rejθ1rjθz1.

全通滤波器极点位于单位圆内,零点位于单位圆外,零极点可以对消,设计全通滤波器:

Hap(z)=Kz1a1az1z1a1az1

零点为 (a)1a1. 对应 z=1re±jθ,取 a=rejθ.

因此可以设计全通滤波器:

Hap(z)=z1rejθ1rejθz1z1rejθ1rjθz1=z22rcosθz1+r212rcosθz1+r2z2

9

A discrete-time sinusoid is periodic only if its frequency f is a rational number.

10

If we sample x1(t)=cos(2π(10)t) and x2(t)=cos(2π(50)t) at a rate 40Hz, the sampled sequences are written as x1(n)=cos(2π(0.25)n) and x2(n)=cos(2π(1.25)n). We say they are 相同?. The sampling frequency should be increased to 100Hz at least such that we can reconstruct the signal x2(t) from the samples.

2. Calculation and Design

11

Determine the coefficients of a linear-phase FIR filter

y(n)=b0x(n)+b1x(n1)+b2(n2)

such that

  1. It rejects completely a frequency component at ω0=2π/3;

  2. Its frequency response is normalized so that H(0)=1;(H(0) 是幅度函数)

Also, compute and sketch the magnitude and phase response(幅频响应和相频响应) of the filter.

Y(z)=b0X(z)+b1z1X(z)+b2z2X(z)
H(z)=Y(z)X(z)=b0+b1z1+b2z2

满足条件 1. 也就是

H(ejω0)=0b0+b1ejω0+b2ej2ω0=0

满足 b0=b1=b2.

满足条件 2. 也就是

H(0)=H(ej0)=b0+b2+b3=1

因此 b0=b1=b2=1/3H(z)=1/3(1+z1+z2).

画出幅频响应和相频响应,注意相频响应在零点处需要 ±π.

12

Given the following signal graph for an FFT algorithm

  1. The graph represents a decimation-in-time algorithm.

  2. Complete the graph with arrowed lines and coefficients.

  3. Using the above graph, compute the 4-point DFT of the sequence x(n)=δ(n)+δ(n1).

    X(k)=n=03x(n)W4nk
    • X(0)=x(0)+x(1)=2.

    • X(1)=x(0)+x(1)W41=x(0)+jx(1)=1+j.

    • X(2)=x(0)+x(1)W42=x(0)x(1)=0.

    • X(3)=x(0)+x(1)W43=1j.

13

Use Butterworth filter with impulse invariance to design a low-pass filter with

The sampling interval is T=1 s.

根据 ω=ΩT 可得 Ωp=0.2π,Ωst=0.3π,因为低通滤波器频带位于 [π/T,π/T] 之间,所以没有混叠。

计算巴特沃斯滤波器阶数和中心频率:

确定归一化巴特沃斯滤波器 Han(s),去归一化得到 Ha(s/Ωc).

使用冲激响应不变法,设计数字滤波器。

14

  1. Derive the decimation-in-time FFT algorithm with N=4 and plot its signal flow graph.

    X[k]=n=0N1x[n]WNnk=m=0N/21(x[2m]WN2mk+x[2m+1]WN2mk+k)=X1[k]+WNkX2[k]
    X[k+N/2]=X1[k]WNkX2[k]

  2. Using the results in (1), plot the signal flow graph for the IFFT with N=4.

    直接调换 X,x 顺序,并且把 WNk 改成 WNk. 并且乘以 1/N=1/4.

  3. Given the DFT for a 8-point sequence x(n) is X(k)={11,3,5,3,3,3,5,3}, use the result in (2) to calculate the sequence x(2n).

    假设 X1[k]x(2n) 的 DFT,X2[k]x(2n+1) 的 DFT.

    • 前一半有:

      X[k]=X1[k]+WNkX2[k]
    • 后一半有:

      X[k+N/2]=X1[k]WNkX2[k]

    因此,X1[k]=(X[k]+X[k+N/2])/2

    X1[k]={7,3,5,3}

    计算其 IDFT 为:

    {2,3,1,3}

15

Given the lowpass-to-bandpass transform in the analog domain is

s=Ωps2+Ωp2Ωp1(Ωp2Ωp1)s

where Ωp is the passband edge frequency for the lowpass filter and Ωp1 and Ωp1 are the two passband edge frequencies for the bandpass filter, please derive the lowpass-to-bandpass transformation in the digital domain using bilinear transformation.

代入双线性变换(取 T=2):

s=1z11+z1,Ω=tan(ω2)

一般取归一化低通滤波器,Ωp=1,令 Ωp0=Ωp1Ωp2Bp=Ωp2Ωp1.

s=s2+Ωp02Bps=(1z1)2+Ωp02(1+z1)2Bp(1z2)=1+Ωp02Bp1z2+2Ωp021Ωp02+1z11z2

根据,

Ωp021Ωp02+1=tan(ω12)tan(ω22)1tan(ω12)tan(ω22)+1=cos(ω1+ω22)cos(ω1ω22)cosω0
1+Ωp02Bp=cot(ω2ω12)

带进去化简即可. 再代入 z=ejω 可以得到频率间的关系。